d2b6c5b286a23a5973591ab1db3c68ac332576b2,time4j-android/src/main/java/net/time4j/format/expert/ChronoFormatter.java,Builder,isDayPeriodSupported,#ChronoElement#,6216
Before Change
}
if ((this.override == null) && (!this.chronology.isSupported(element))) {
Chronology<?> child = this.chronology.preparser();
return ((child != null) && child.isSupported(element));
}
return true;
After Change
}
if ((this.override == null) && !this.chronology.isSupported(element)) {
Chronology<?> child = this.chronology;
while ((child = child.preparser()) != null) {
if (child.isSupported(element)) {
return true;
}
}